home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 September / PCWorld_2002-09_cd.bin / Software / Vyzkuste / httrack / httrack-3.20RC4.exe / {app} / src / htszlib.c < prev    next >
C/C++ Source or Header  |  2002-05-03  |  2KB  |  85 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: Unpacking subroutines using Jean-loup Gailly's Zlib    */
  34. /*       for http compressed data                               */
  35. /* Author: Xavier Roche                                         */
  36. /* ------------------------------------------------------------ */
  37.  
  38.  
  39. /* specific definitions */
  40. #include <stdio.h>
  41. #include <stdlib.h>
  42. #include "htsbase.h"
  43. #include "htscore.h"
  44.  
  45. #if HTS_USEZLIB
  46.  
  47. /* zlib */
  48. #include <zlib.h>
  49. #include "htszlib.h"
  50.  
  51. /*
  52.   Unpack file into a new file
  53.   Return value: size of the new file, or -1 if an error occured
  54. */
  55. int hts_zunpack(char* filename,char* newfile) {
  56.   if (filename && newfile) {
  57.     if (filename[0] && newfile[0]) {
  58.       gzFile gz = gzopen (filename, "rb");
  59.       if (gz) {
  60.         FILE* fpout=fopen(fconv(newfile),"wb");
  61.         int size=0;
  62.         if (fpout) {
  63.           int nr;
  64.           do {
  65.             char buff[1024];
  66.             nr=gzread (gz, buff, 1024);
  67.             if (nr>0) {
  68.               size+=nr;
  69.               if ((int)fwrite(buff,1,nr,fpout) != nr)
  70.                 nr=size=-1;
  71.             }
  72.           } while(nr>0);
  73.           fclose(fpout);
  74.         } else
  75.           size=-1;
  76.         gzclose(gz);
  77.         return size;
  78.       }
  79.     }
  80.   }
  81.   return -1;
  82. }
  83.  
  84. #endif
  85.